Building Our Way to Affordability: A YIMBY Policy Analysis

Author

Shreya Karki

Published

October 24, 2025

Introduction

Housing affordability represents one of America’s most pressing urban challenges. This analysis identifies the nation’s most pro-housing metropolitan areas by examining construction patterns, economic opportunities, and housing costs across Core-Based Statistical Areas. Following the YIMBY principle that permissive zoning and increased housing supply can reduce costs and create more dynamic, inclusive communities, we analyze which regions are actually building enough homes to meet demand and which are falling behind.

Data Relationship Diagram

TipKey Data Relationships
  • All ACS tables (INCOME, RENT, POPULATION, HOUSEHOLDS) share the composite key GEOID + year and join 1:1.
  • PERMITS uses CBSA, which corresponds to ACS GEOID, hence it joins on geography + year.
  • WAGES uses BLS industry codes (e.g., 101, 1011) that do not exactly match NAICS codes in INDUSTRY_CODES; this link is conceptual.
  • WAGES connects to ACS and PERMITS after transforming CBSA → “C” + first 4 digits (e.g., 10180 → C1018).
  • For clarity, not every possible line is drawn — the diagram shows only the primary joins used in analysis.

This ERD was created in dbdiagram.io and embedded as an SVG for best visual clarity.

Construction Leadership & Housing Supply Analysis (Data Exploration)

National Housing Production Leaders: 2010-2019

The Dallas-Fort Worth-Arlington, TX Metro Area metropolitan area permitted 6,451,564 new housing units from 2010-2019, demonstrating the scale of construction achievable with pro-housing policies. This level of production represents a benchmark for regional housing growth targets.

Market Volatility Analysis: Albuquerque Case Study

Table: Annual Housing Production — Albuquerque Metro Area

Albuquerque’s housing permits peaked in 2021, with the highest pre-pandemic level recorded in 2013.

Interpretation: This pattern shows a brief spike rather than a steady climb. To judge local homebuilding capacity, it is better to look at multi-year trajectories than any single high point.

Regional Income Distribution Patterns

In DC, the average individual income was the highest in 2015 at approximately $33,233 per person.

Interpretation: High income alone does not ensure affordability. Without enough housing, rents rise faster than wages.

High-Skill Employment Distribution

In the latest year (2023), San Francisco-Oakland-Fremont, CA Metro Area has the most data scientists. New York–Newark–Jersey City last held the top spot in 2015.

Interpretation: Fast growth in high-paying tech jobs raises housing demand. Cities that permit new homes steadily can prevent rent spikes as their job markets expand.

Financial Sector Concentration: NYC Case Study

In the New York City CBSA, workers employed in the Finance and Insurance industries (NAICS 52) earned about 4.6% of all wages.

This share peaked in 2014, showing how important finance remains to NYC’s economy.

Interpretation: Finance jobs bring high wages, but without new housing construction, those wage gains mostly raise rents instead of improving overall affordability.

Rent Burden: Understanding Housing Affordability

Defining the Metric

Rent burden measures the share of household income spent on rent — a direct indicator of housing affordability.
The INCOME and RENT tables are joined by geography and year to compute:

Rent Burden % = (Monthly Rent × 12) / Household Income × 100

To make comparisons meaningful across regions and years, the metric is standardized so that 0 = lowest and 100 = highest rent burden observed in the study period.

Priority Intervention Regions

Table: Highest Rent Burden

Interpretation: Clearlake, CA Micro Area faces the highest rent burden in the latest year, with residents spending about 31.2% of income on rent (standardized score 72.9).

This indicates acute affordability pressure, consistent with demand outpacing new supply. These metros are strong candidates for targeted permitting reforms and federal YIMBY incentives to expand rental stock quickly.

Affordable Housing Models

Table: Lowest Rent Burden

Interpretation: Laconia, NH Micro Area indicates the lowest rent burden in the latest year, with residents spending about 12.7% of income on rent and a standardized score of 1.6.

This outcome is consistent with ample new supply and/or strong income growth, suggesting that steady permitting and streamlined approvals can keep housing costs in check.

Housing Growth: Measuring Supply Responsiveness

Housing growth captures how effectively cities add homes to match demand.

Using permit and population data, two complementary indicators were developed:
- an instantaneous production metric, measuring new housing relative to population size; and
- a rate-based growth metric, comparing permitting to five-year population change.

Combining these yields a composite housing growth score, which highlights metros that are both building actively and scaling with demographic trends.

Construction Hotspots: Where Building is Happening Now

Table: Construction Hotspots — Highest Current Production

Interpretation: Salisbury, MD Metro Area is currently the nation’s most active housing market, with a production score of 100.

This reflects strong near-term construction activity, signaling local policies that allow quick permitting and responsive homebuilding.

Such metros serve as models for short-run supply elasticity, showing that steady permitting can temper rent growth even in high-demand regions.

Growth-Responsive Housing Markets

Interpretation: Springfield, OH Metro Area demonstrates the most balanced housing response to population expansion, with a five-year growth-adjusted score of 7.7.

This means that new housing supply has kept pace with rapid population increases—an indicator of adaptive land-use policy and capacity planning that maintains affordability while accommodating in-migration.

Metros with low growth scores, by contrast, risk rising rent burdens as population outstrips new construction.

Overall Housing Growth

Interpretation: Punta Gorda, FL Metro Area leads the nation with an overall housing growth score of 28.6, balancing both strong construction volume and responsiveness to local population changes.

This composite result highlights how consistent permitting pipelines and pro-housing zoning frameworks can deliver stability across economic cycles.

Such metros illustrate the potential impact of federal-state collaboration on long-term housing affordability.

Policy Takeaway

Regions like Punta Gorda, FL Metro Area and Springfield, OH Metro Area show that consistent, multi-year housing production, most effectively keeps rent burdens stable.

Federal programs that reward steady permitting and year-over-year delivery can replicate this success across other metros.

Visualization

Rent Burden vs Housing Growth

Cities shown in green (“YIMBY Success”) built more housing and saw rent burdens stabilize or decline over time.

This pattern supports the idea that steady housing production helps prevent rent spikes, even in growing metros.

Population Growth vs Housing Affordability

Many metros with strong population growth also achieved better affordability when new housing kept pace.

In contrast, regions with low construction saw rent burdens worsen — highlighting how growth without supply drives up costs.

Metros Achieving Affordability Through Construction

Table: Metropolitan Areas Improving Affordability Through Housing Supply (Top 10)

These metros represent the top 10 “YIMBY success stories” cities that started with relatively high rent burdens but achieved improvements over time while maintaining strong housing growth.

The leading metro, New Bern, NC Metro Area, saw a rent burden drop of 1.9 percentage points while maintaining a housing growth score of 34.9.

This demonstrates how steady new construction helps stabilize affordability even as populations rise.

Table: Recommended Congressional Sponsors
Code
# Primary sponsor: among YIMBY successes, pick the one with highest average housing growth
primary <- yimby_summary %>%
  filter(yimby_score == "YIMBY Success") %>%
  arrange(desc(avg_housing_growth)) %>%
  slice(1)

# Co-sponsor: highest recent burden among metros with below-median housing growth
hg_median <- median(yimby_summary$avg_housing_growth, na.rm = TRUE)
cosponsor <- yimby_summary %>%
  filter(avg_housing_growth <= hg_median) %>%
  arrange(desc(recent_burden)) %>%
  slice(1)

primary_name   <- primary$City_Name[1]
cosponsor_name <- cosponsor$City_Name[1]

sponsors <- tibble::tibble(
  Role = c("Primary Sponsor (YIMBY success)", "Co-Sponsor (High burden, low growth)"),
  `Metro Area` = c(primary_name, cosponsor_name),
  `Early Rent Burden %`  = c(round(primary$early_burden[1], 1),  round(cosponsor$early_burden[1], 1)),
  `Recent Rent Burden %` = c(round(primary$recent_burden[1], 1), round(cosponsor$recent_burden[1], 1)),
  `Change in Burden (pp)` = c(round(primary$burden_change[1], 1), round(cosponsor$burden_change[1], 1)),
  `Population Growth %`    = c(round(primary$pop_growth[1], 1),   round(cosponsor$pop_growth[1], 1)),
  `Avg Housing Growth Score` = c(round(primary$avg_housing_growth[1], 1), round(cosponsor$avg_housing_growth[1], 1))
)

DT::datatable(
  sponsors,
  caption = "Recommended Congressional Sponsors",
  options = list(pageLength = 5, searching = FALSE, lengthChange = FALSE),
  rownames = FALSE
)

The table highlights two contrasting metros that capture both success and need in housing reform.

  • The primary sponsor city, New Bern, NC Metro Area, achieved a rent burden decline of 1.9 percentage points and strong housing growth (34.9 score), proving that steady permitting can reduce affordability pressures.
  • The co-sponsor city, Miami-Fort Lauderdale-West Palm Beach, FL Metro Area, saw rent burden rise to 30.1% with limited housing growth (4.4 score), showing the cost of underbuilding.

Together, these cities make a compelling case for federal incentives that expand local housing capacity while maintaining affordability.

Code
# Map WAGES CBSA to names using POPULATION 
cbsa_map <- POPULATION %>%
  distinct(GEOID, NAME) %>%
  mutate(std_cbsa = paste0("C", GEOID)) %>%
  select(std_cbsa, NAME)

wages_named <- WAGES %>%
  mutate(std_cbsa = paste0(FIPS, "0")) %>%
  inner_join(cbsa_map, by = "std_cbsa")

two_metros <- wages_named %>%
  filter(NAME %in% c(primary_name, cosponsor_name),
         INDUSTRY %in% c(23, 62)) %>%
  group_by(NAME, INDUSTRY) %>%
  summarise(
    Employment = sum(EMPLOYMENT, na.rm = TRUE),
    `Avg Annual Wage (USD)` = round(weighted.mean(AVG_WAGE, w = EMPLOYMENT, na.rm = TRUE), 0),
    .groups = "drop"
  ) %>%
  mutate(Industry = dplyr::case_when(
    INDUSTRY == 23 ~ "Construction (NAICS 23)",
    INDUSTRY == 62 ~ "Health Care & Social Assistance (NAICS 62)",
    TRUE ~ paste0("NAICS ", INDUSTRY)
  )) %>%
  select(Industry, Metro = NAME, Employment, `Avg Annual Wage (USD)`)

two_metros

Policy Brief

Why this bill is needed

Across U.S. metropolitan areas, rent burdens remain high even as incomes rise.

Our analysis shows that metros which consistently permit new housing experience lower rent burdens without slowing job or population growth.

Federal incentives can help local governments sustain this success by encouraging steady, multi-year housing pipelines rather than short-term construction spikes.

Understanding the metrics

Two indicators guide where policy can have the greatest impact:

  • Rent Burden (%): Share of a typical household’s income spent on rent
    (Monthly Rent × 12 ÷ Household Income × 100).
    Standardized into a Burden Score (0–100), where higher values signal greater affordability pressure.

  • Housing Growth (Composite Score): Combines two complementary measures:

    1. Production (instantaneous) — housing permits per 1,000 residents, reflecting current construction activity.
    2. Rate-based (5-year responsive) — housing permits relative to population growth, showing whether new supply keeps pace with demand.

Higher scores indicate regions successfully matching construction to population needs.

Coalition: who benefits from expanding housing

Broad-based support for this bill can come from key industries that directly gain from more stable housing markets:

  • Construction (NAICS 23): Predictable permitting creates steady, skilled jobs and stronger wage security for workers.
  • Health Care & Social Assistance (NAICS 62): Affordable housing allows hospitals and clinics to retain nurses, aides, and frontline staff, strengthening essential community services.
Table: Key Industries in Proposed Sponsor Metros

Conclusion

Housing affordability improves when cities build steadily, not sporadically.

This analysis shows that consistent permitting, supported by smart federal incentives, can help every metro area balance growth with livability.

By rewarding results and empowering local governments to build, this bill moves the nation from housing shortage to housing stability.